Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 

54 Zeilen
1.5 KiB

  1. <template>
  2. <section class="flex flex-col items-center min-h-screen">
  3. <div class="container w-full p-6 max-w-6xl grow flex flex-col items-center">
  4. <div class="flex flex-col lg:flex-row">
  5. <img class="min-w-fit" :src="config.public.IMG_BASE_URL + film.poster_path" :alt="film.title">
  6. <span class="ml-20 w-60">
  7. <h1 class="text-4xl font-bold leading-relaxed">
  8. {{ film.title }}
  9. </h1>
  10. <h2 class="text-2xl">
  11. {{ director }}
  12. </h2>
  13. <p class="my-8">
  14. {{ film.overview }}
  15. </p>
  16. <ul class="flex">
  17. <li v-for="star in film.credits.cast">
  18. {{ star.name }}
  19. </li>
  20. </ul>
  21. <ul>
  22. <li v-for="genre in film.genres">
  23. {{ genre.name }}
  24. </li>
  25. </ul>
  26. {{ film.vote_average }}
  27. {{ film.vote_count }}
  28. </span>
  29. </div>
  30. <div>
  31. <CommentForm :filmId="film.id" />
  32. <CommentList :filmId="film.id" />
  33. </div>
  34. </div>
  35. </section>
  36. </template>
  37. <script setup lang="ts">
  38. const config = useRuntimeConfig()
  39. const film = ref()
  40. const route = useRoute()
  41. const filmId = ref('')
  42. const director = ref('')
  43. filmId.value = route.params.id
  44. if (filmId.value !== '') {
  45. const { data } = await useFetch(`/api/details/${filmId.value}`)
  46. film.value = data.value
  47. director.value = film.value.credits.crew.filter((member) => member.job === 'Director')
  48. director.value = director.value[0].name
  49. }
  50. </script>